home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / BYACC__ / TEXT.H < prev    next >
Text File  |  1989-11-19  |  203b  |  18 lines

  1. #ifndef TEXT1
  2. #define    TEXT1
  3.  
  4. typedef
  5.   struct text
  6.     {
  7.       int start_line;
  8.       int length;
  9.       char ch[1];
  10.     }
  11.   text;
  12.  
  13. extern text *mk_text();
  14. extern free_text();
  15. extern write_text();
  16.  
  17. #endif
  18.